From 882949f3f5b7abadb7433258dde9988aa83cd56e Mon Sep 17 00:00:00 2001 From: "emellor@leeni.uk.xensource.com" Date: Tue, 8 Nov 2005 11:35:25 +0100 Subject: [PATCH] Remove unused parameter. Signed-off-by: Ewan Mellor --- tools/python/xen/xend/xenstore/xstransact.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/python/xen/xend/xenstore/xstransact.py b/tools/python/xen/xend/xenstore/xstransact.py index eb39368068..c1b72a970f 100644 --- a/tools/python/xen/xend/xenstore/xstransact.py +++ b/tools/python/xen/xend/xenstore/xstransact.py @@ -74,7 +74,7 @@ class xstransact: ('%s, while writing %s : %s' % (ex.args[1], path, str(data)))) - def write(self, *args, **opts): + def write(self, *args): if len(args) == 0: raise TypeError if isinstance(args[0], dict): @@ -235,11 +235,11 @@ class xstransact: Read = classmethod(Read) - def Write(cls, path, *args, **opts): + def Write(cls, path, *args): while True: t = cls(path) try: - t.write(*args, **opts) + t.write(*args) if t.commit(): return except: -- 2.30.2